type into command prompt: 
"pip3 install setuptools twine"

then navigate to the path of the yap.helper:

yap.helper's path = C:\Users\graham.lasseigne\AppData\Local\Programs\Python\Python311\yap.helper

once you have navigated to it you can type in "ls" (that's an L then an S)
    you'll be able to see the directory

we now must create a distruptable version of our library

now in the same directory, type: 
"py setup.py sdist" then enter

that does everything we need. 

and if you retype in the "ls" after you have run the sdist in command prompt 
    you can now see a dist file appear in the directory

to upload it to pypi, we need to use a tool named twine 

then type in this: "twine upload --repository-url https://upload.pypi.org/legacy/ dist/*"

^OUTDATED

if you have the $Home location file of a .pypirc file with your token, then you can just run: 
"twine upload dist/*" in the command prompt 

it will ask your username and password
username: "yap.athy" 
password: idk

then it is on there, good job

